home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Converters / Convert_MacPaint / Source / shared.subproj / RCS / ProgressIndicator.h,v < prev    next >
Text File  |  1995-06-12  |  1KB  |  80 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  beta10:1.2;
  5. locks    death:1.3;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     93.04.04.23.45.01;  author death;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     93.01.10.15.08.40;  author death;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     92.07.26.14.00.14;  author death;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Initial revision of this view
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Sun Apr  4 23:45:00 PDT 1993
  33. @
  34. text
  35. @
  36. /* Generated by Interface Builder */
  37.  
  38. /*
  39.     This is a simple view that implements a percent-complete indicator.  It looks and
  40.     behaves just like the indicator on NeXT's Processes window, or the one in the
  41.     Installer.app application.  The caller gives it a number that constitutes the 'goal', and
  42.     then updates the view whenever it moves closer or further away from the goal.  The
  43.     circle displayed on the screen reflects these changes.
  44.     92.06.21    djb
  45. */
  46.  
  47. #import <appkit/View.h>
  48. #import "common.h"
  49. @@interface ProgressIndicator:View
  50. {
  51.     Boolean    active;
  52.     Real        numUnits;
  53.     Real        CurrentValue;
  54. }
  55.  
  56. - drawSelf:(const NXRect *)rects :(int)rectCount; 
  57. - init;
  58. - ActivateWithGoal: (Real) count;
  59. - Deactivate;
  60. - IncrementBy: (Real) units;
  61. - SetTo: (Real) units;
  62. @@end
  63. @
  64.  
  65.  
  66. 1.2
  67. log
  68. @Sun Jan 10 15:08:39 PST 1993
  69. @
  70. text
  71. @@
  72.  
  73.  
  74. 1.1
  75. log
  76. @Initial revision
  77. @
  78. text
  79. @@
  80.